if (obj instanceof AccessToken) {
final AccessToken other = (AccessToken) obj;
return type.equals(other.type) && Objects.equals(value, other.value);
}
return false;
}
final AccessToken that = (AccessToken) o;
return Objects.equal(type, that.type) && Objects.equal(value, that.value);
}
@Override